home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Interactive Reference Guide
/
C-C++ Interactive Reference Guide.iso
/
c_ref
/
csource2
/
sclib_1
/
1_2
/
v7n2046b.txt
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1995-11-01
|
292 b
|
15 lines
/* interface to vmalloc module */
#include <malloc.h>
char *vmalloc();
void vfree();
void vverify();
char *vrealloc();
char *vcalloc();
void vdump();
#define malloc(a) vmalloc(a)
#define free(a) vfree(a)
#define realloc(a, b) vrealloc(a, b)
#define calloc(a, b) vcalloc(a, b)